Method: \saffire\datetime.format()

Signature string datetime.format(string format);

Returns a formatted date string according to the current datetime values.

Arguments

A datetime string that can use any of the C library’s strftime() placeholders:

ValueDescriptionExample
dGiven day1..31
MGiven month1..12
YGiven year in YYYY format2015

Notes:

Examples:

io.println(datetime.now().format("d-M-Y"));
// 15-05-2015